Hi Everyone,
I would like to get the owner of file and search the topic and found Find owner/creator of a file
I try to put the function “System.IO.File” but not can’t find option “.GetAccessControl”
Thank you.
Hi Everyone,
I would like to get the owner of file and search the topic and found Find owner/creator of a file
I try to put the function “System.IO.File” but not can’t find option “.GetAccessControl”
Thank you.
I believe you are on windows project…it is available only on legacy…as per official docs its available in 4.8.1 or lower…windows is on 5.0+
create a project in legacy to get this
in windows try this
System.IO.FileSystemAclExtensions.GetAccessControl(New FileInfo("Filepath"))
Hope this helps
cheers
Hi @aeklikit .
Have you tried
System.IO.File.GetAccessControl(path).GetOwner(GetType(System.Security.Principal.NTAccount)).Value
could you please show your folder
regards
Hi @Anil_G
I have try “System.IO.FileSystemAclExtensions.GetAccessControl(New FileInfo(“Filepath”))” on my Windows flow is work
Could you please explain about “as per official docs its available in 4.8.1 or lower…windows is on 5.0+”?
because I’m developer but user learn to use UiPath.
Thank you very much
System.IO.File.GetAccessControl is available in .net 4.8 or below
this function is moved to a different library in the new .net version
System.IO.FileSystemAclExtensions.GetAccessControl
Hope this helps
UiPath windows-legacy is developed on .net 4.5-
UiPath windows is developer on .net 5+
cheers
I already try this function first but doesn’t work because my flow is “Windows” compatibility.
But now I have try “System.IO.FileSystemAclExtensions.GetAccessControl(New FileInfo(“Filepath”))” as @Anil_G suggestion is work.
Thank you so much.
Noted, I’m so grateful for your help.
Good job
Cheer @aeklikit ,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.