I don't see a way to create a new folder. Do I need to use some variation of the CreateNewFile method? Or is there a method that can be added to the class?
'Creates a new directory
Public Sub CreateNewDirectory (Parent As ExternalFile, Name As String) As ExternalFile
Return DocumentFileToExternalFile(Parent.Native.RunMethod("createDirectory", Array(Name)))
End Sub
'Creates a new directory
Public Sub CreateNewDirectory (Parent As ExternalFile, Name As String) As ExternalFile
Return DocumentFileToExternalFile(Parent.Native.RunMethod("createDirectory", Array(Name)))
End Sub