Hi,I use FileWriter and create a new file somewhere in the hard disk. How could i make this file hidden? I didn't find any method in Files class (1.4.1.)Thanks on advance,SOL
1) If you are using Unix just rename your file to a name that starts with a dot, like ".profile" ;-)2) If you're using Windows you must call some external program (like attrib +H) or write a small JNI DLL.