fs icon indicating copy to clipboard operation
fs copied to clipboard

File system utilities for Clojure.

Results 30 fs issues
Sort by recently updated
recently updated
newest added

Currently the `glob` function expects that if a wildcard exists in the path, it will exist in its very end. I.E. `/some/path/with/wildcard.*` But a path like `/another/path/*/with/wildcard` is not supported...

might be useful ```clojure (me.raynes.fs/with-temp-dir [source target] (let [f (str source "/shuki.txt") t (str target "/shuki.txt")] (spit f "hello") (me.raynes.fs/rename f t) (slurp t))) ``` all temp folders will be...

relevant for this issue https://github.com/Raynes/fs/issues/103

Can you add a method to delete all data in folder?

The previous implementation of `iterate-dir` was not lazy and would eagerly traverse the entire directory hierarchy and load it all into memory. Because it was eager, the entire directory tree...

Any chance of a release? There's been a few nice things added since 2014. In particular, I'd like to have access to chmod-octal in a versioned release.

This resolves issue #12. I haven't tested it on windows, but on windows it will return nil, which is not ideal, but it never actually worked properly anyway, so it...

``` clojure (fs/touch "meow" (+ (System/currentTimeMillis) 3600000)) ``` Should create a file named `meow` and set its modification time one hour in the future. If the file is being created,...

...of course there is the interop way, but I'd prefer not to have to...