I have Java program where I create a file called hd_details, and store the hardware details of the machine that runs the program and install count. The install count is to restrict the exe to run 2 time only. I converted that program to an exe through Launch4j. When I run the exe, the file hd_details get extracted. I need to hide the file. Any suggestion?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
On windows you can try this:
|
|||
|
|
|
If you want a file to both exist and "be hidden", you are wanting the file-system of the computer to do something. That puts you out of the domain of Java proper and into system dependent issues. You mentioned "an On POSIX systems a file can be anonymous (and therefore invisible) but existent by removing all hard links to it while holding it open. I do not beleive that truely invisible closed files are possible in POSIX. The |
|||
|
|
tasklist(win command) from within java (Runtime.getRuntime().exec) and just exit your program if it is already running? – Jacob Jul 5 '11 at 11:31