|
From: Jeremy B. <je...@de...> - 2006-06-15 03:17:06
|
On Wed, June 14, 2006 7:23 pm, Brendon Costa wrote:
> I was wondering if there is an existing way to convert a MSYS
> path/filename into a windows path/filename?
Since MSYS will rewrite the filenames when it passes them to non-msys
programs, you can create a tiny little program that is not an msys program
and pass the filenames to it.
i.e.
/* msys2dos.c */
#include <stdio.h>
int main(int argc, char**argv) {
int i;
for(i=1;i<argc;i++) {
printf("%s\n", argv[i]);
}
return 0;
}
|