2
votes
Is there a unique id for files?
The answer is as always 'it depends'. What do you mean with 'unique id'? Would this id change if the contents of the file is changed, or would you consider that as the same file? In Unix, the inode …
7
votes
Hide a file or directory using the Windows API from C
You can do it by calling SetFileAttributes and setting the FILE_ATTRIBUTE_HIDDEN flag. See http://msdn.micr …
0
votes
How to delete last line of file in Ruby?
The easiest way is just to read the whole file, remove the '\n' at the end, and rewrite it all with your own content:
filename = "imcs2.xml"
content = File.open(filename, "rb") { |i …
