MitchBu Well-Known Member Licensed User Longtime User Sep 25, 2021 #1 How would I go to create a symbolic link in B4A like it is described here ? https://developer.android.com/reference/android/system/Os.html#symlink(java.lang.String,%20java.lang.String) Thank you.
How would I go to create a symbolic link in B4A like it is described here ? https://developer.android.com/reference/android/system/Os.html#symlink(java.lang.String,%20java.lang.String) Thank you.
Erel B4X founder Staff member Licensed User Longtime User Sep 26, 2021 #2 B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user. Upvote 0
B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user.
MitchBu Well-Known Member Licensed User Longtime User Sep 26, 2021 #3 Erel said: B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user. Click to expand... Thank you Erel Upvote 0
Erel said: B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user. Click to expand... Thank you Erel
MitchBu Well-Known Member Licensed User Longtime User Sep 26, 2021 #4 Erel said: B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user. Click to expand... You are right. Did not work Upvote 0
Erel said: B4X: Dim jo As JavaObject jo.InitializeStatic("android.system.Os").RunMethod("symlink", Array(OldPath, NewPath)) It will be surprising if it will help in any way. Android hides the file system from the user. Click to expand... You are right. Did not work