[Project] WP8 File Explorer Project

ultrashot

Inactive Recognized Developer
May 26, 2009
1,478
2,046
0
St.Petersburg
I believe you're right. We should try to find the function prototypes for the pacman functions. The fact that the capabilities to use them are available to use should be put to good use.
There is no problem at all - I have them. XAPDeployer porting is the first in my TODO list after receiving Ativ S which is gonna happen this monday.
 
Last edited:

hjc4869

Senior Member
Jul 31, 2012
52
53
0
Wuhan
There is no problem at all - I have them. XAPDeployer porting is the first in my TODO list after receiving Ativ S which is gonna happen this monday.
Have you found out where the export functions related to pac-man are? I've tried to do so but up to now I didn't see them in any DLL.
 

Mattemoller90

Senior Member
Nov 28, 2008
226
32
0
If you are member of "Windows Phone App Studio" you can install Your app (develop in "Windows Phone App Studio app) directly from Your phone, is it useful?
 
Last edited:

contable

Senior Member
Oct 25, 2009
1,755
996
0
WELL, to tell the truth, I'm not quite interested in figuring out every single capability's usage.. In fact I'm trying to push all the capabilities together in the registry and create one like "ID_CAP_ROOT_ACCESS" then it will be more convenient..
Am I right that the copy and move commands don´t work because of the missing write access to the sd card ?

If so I could share my workaround for extending your fileexplorer.
In my PDF to Office app I can write to the sd card.

Let me know.
 

jessenic

Senior Member
Sep 9, 2010
479
313
0
suomiwp.com
Writing and reading from SD card works fine for me. What are you trying to accomplish?
Code:
            var files = Directory.GetFiles("D:\\");
            foreach (var file in files)
            {
                System.Diagnostics.Debug.WriteLine(file);
            }
            using (var writer = File.CreateText("D:\\test.txt"))
            {
                writer.WriteLine("Features!");
            }
            File.Copy("D:\\test.txt", @"C:\Data\Users\Public\test.txt");
 
Last edited:

contable

Senior Member
Oct 25, 2009
1,755
996
0
Writing and reading from SD card works fine for me. What are you trying to accomplish?
Code:
            var files = Directory.GetFiles("D:\\");
            foreach (var file in files)
            {
                System.Diagnostics.Debug.WriteLine(file);
            }
            using (var writer = File.CreateText("D:\\test.txt"))
            {
                writer.WriteLine("Features!");
            }
            File.Copy("D:\\test.txt", @"C:\Data\Users\Public\test.txt");
Try to use FileSystem.MoveFile or FileSystem.CopyFile for copying a file from documents folder to D:\\

Didn´t work for me.
 

contable

Senior Member
Oct 25, 2009
1,755
996
0
Code:
System.IO.File.Copy(@"C:\Data\Users\Public\test.txt", @"D:\anothertest.txt");
Working fine here. I'm not using GDTD's libraries, but the builtin methods of C#
Let me test your way....

---------- Post added at 02:23 PM ---------- Previous post was at 02:14 PM ----------

Code:
System.IO.File.Copy(@"C:\Data\Users\Public\test.txt", @"D:\anothertest.txt");
Working fine here. I'm not using GDTD's libraries, but the builtin methods of C#
You´re right. Works fine here. :good:

I was too concentrated on GDTD´s library...
 
Our Apps
Get our official app!
The best way to access XDA on your phone
Nav Gestures
Add swipe gestures to any Android
One Handed Mode
Eases uses one hand with your phone