Processing system files
Hi,I want to process file that is located in system files. My code takes this file as a parameter, but how can I process the file directly since it locates in different drive -- not in the same directory where I have my code.
But if I assumed that the bath is :C:\folder1\subfolder\fileWhen I pass this path I recieve error that says:Invalid escape, you should use(\t, \n,..)
Thats becouse character '\' is used as the scape character.
you should either change the \ chars to / chars. or scape all \ chars by adding \ caracter before each of them.
so the valid java string representing the path should look like
C:\\folder1\\subfolder\\file
or
C:/folder1/subfolder/file
LRMKa at 2007-7-14 1:29:48 >
