Koreax
Insane-Known Member
- Messages
- 35
- Points
- 368
- Thread starter
- #1
Dear CabCon Community,
I'm currently building an advanced Console Manager aka CCAPI 2.90 which i want to improve with many new features.
I'm trying to Move a file from any folder directly to my PS3 without using FTP.
I want to use it in my button that user can put a custom path on their console to move a specific file to this direction.
My code so far that i tried but failed:
string sprx = Path.Combine(Directory.GetCurrentDirectory(), "Settings.sprx");
File.Create(sprx);
string url = "
File.Copy(sprx, url);
I'm currently building an advanced Console Manager aka CCAPI 2.90 which i want to improve with many new features.
I'm trying to Move a file from any folder directly to my PS3 without using FTP.
I want to use it in my button that user can put a custom path on their console to move a specific file to this direction.
My code so far that i tried but failed:
string sprx = Path.Combine(Directory.GetCurrentDirectory(), "Settings.sprx");
File.Create(sprx);
string url = "
You have to be logged in to view links
Log in or register now.
";File.Copy(sprx, url);