Koreax
Veteran
- Messages
- 35
- Reaction score
- 16
- Points
- 793
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 = " ";
File.Copy(sprx, url);