Use case: You have a current file path, and a new file path where you want to move the file to. You need to know whether the new path is on the same HDD/partition to determine whether to use fs.rename (faster, but works only within the same HDD/partition), or copy & delete the original (slower, but necessary when moving across HDD/partitions).
How would you accomplish that? Has to work on all platforms supported by node. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
