Is there any way to get the absolute path from BufferedWriter ?
From the spec it seems that it is not possible but I am asking just in case anybody aware of some kind of trick…
Is there any way to get the absolute path from BufferedWriter ? From the
Share
AFAIK, the closest you can get in Unix is to,
/proc/self/fd/{fid}to get the inode of the file and possibly the device to determine which file you are accessing.