FileSystem API - Possible to save a file to a child directory?
-
This might have a simple answer, but I'm not sure how to save a file to a child directory using the FileSystem API. For example, how would I store a file in
UserPresets/SpecificPresetFolder
?You can easily get to the UserPreset directory with
FileSystem.getFolder(FileSystem.UserPresets)
but I don't know how to get to a directory within that because according to the docs you can't use absolutely paths with the FileSystem API. Thoughts? Am I missing something really obvious? -
Ignore me...I obviously only figure things out immediately after I post them
This works:
FileSystem.getFolder(FileSystem.UserPresets).getChildFile("CustomFolder/AnotherCustomFolder");
-
@Lunacy-Audio That's what usually happens to me
-
@Lunacy-Audio said in FileSystem API - Possible to save a file to a child directory?:
Ignore me...I obviously only figure things out immediately after I post them
Haha I think most of us have done that before :)