Give us feedback
filesystem
Service icon

FileSystem

icon_trusted
Stable version 3.2.0 (Compatible with OutSystems 11)
Other versions available for 10 and Older
Uploaded on 17 Jan by 
4.3
 (42 ratings)
filesystem

FileSystem

5 star
31
1 Review |  31 Ratings
4 star
2
1 Review |  2 Ratings
3 star
4
1 Review |  4 Ratings
2 star
0
0 Reviews |  0 Ratings
1 star
5
1 Review |  5 Ratings
42
Ratings
4.3
10
Reviews
by 
17 Jan
in version 3.1.0
Hi, this is a good library, but is there really not a `Move_Directory` function offered? There is a MoveFile function, but MoveDirectory from src to dest is important to have as well.
Answer from the owner
17 Jan
in version 3.1.0
Hi S G, totally agree, so I've added it. Please download version 3.2.0, which includes Directory_Move. Let us know whether it works :).
by 
2023-08-11
in version 3.1.0
About MoveFile action..
Despite saying that it overwrites the files if it exists, it is not true!
If the file exists in the destination, the move action fails, it does not give any exception but you can see in the output the message "FileExistsError: [WinError 183] Cannot create a file when that file already exists"
Answer from the owner
2023-08-14
in version 3.1.0
Hi Samuel,

Where does it say that it overwrites the file? In the documentation, it says "If the file already exists at the destination location, an error is returned." This was changed when earlier this year someone made the same remark (see https://www.outsystems.com/forums/discussion/86918/filesystem-file-move-does-not-overwrite-file-in-target-directory/).
by 
2023-01-21
in version 3.1.0
this line of code
 if (LogonUser(ssUsername, ssDomain, ssPassword, 9, 0, out phToken) != 0)
need to be
 if (LogonUser(ssUsername, ssDomain, ssPassword, 3, 0, out phToken) != 0)
as LogonUserA function take types of logon from 1 to 7 only
and i think the best choice is LOGON32_LOGON_NETWORK = 3
so extension could access shared folders with username and password correctly