summaryrefslogtreecommitdiff
path: root/docs/markdown/Fs-module.md
AgeCommit message (Collapse)Author
2019-12-19fs: rename samefile => is_samepathMichael Hirsch, Ph.D
is_samepath better reflects the nature of this function--that files and directories can be compared. Also, instead of raising exceptions, simply return False when one or both .is_samepath(path1, path1) don't exist. This is more intuitive behavior and avoids having an extra if fs.exist() to go with every fs.is_samepath()
2019-11-25fs: Add parent() and name() methodsXavier Claessens
2019-11-17fs: make replace_suffix not expand file to absolute path, just manipulate ↵Michael Hirsch, Ph.D
the string
2019-11-17fs: replace_suffixMichael Hirsch, Ph.D
2019-11-17fs: add docs for fs.size()Michael Hirsch, Ph.D
2019-11-17fs: correct docsMichael Hirsch, Ph.D
2019-11-17fs: get file sizeMichael Hirsch, Ph.D
fs: add samefile
2019-11-17fs: add hash compute methodMichael Hirsch, Ph.D
2019-11-17fs: further document and test behaviorMichael Hirsch, Ph.D
2019-11-17add fs.with_suffixMichael Hirsch, Ph.D
2019-11-08Created the filesystem module.Jussi Pakkanen