using System.IO;
//Lecture
FileStream f = File.OpenRead(filename);
byte[] bt = new byte[f.Length];
f.Read(bt, 0, (int)f.Length);
f.Close();
//Ecriture
byte[] bt = ...
FileStream f = File.Create(Application.persistentDataPath+"/myFile.dat");
f.Write(bt, 0, bt.Length);
f.Close();
Au passage, pour savoir si un fichier existe:
if (File.Exist(filename)) ...
Lecture ecriture de textes:
http://www.csharphelp.com/2005/12/simple-text-file-operations-in-c/
Lecture ecriture de textes:
http://www.csharphelp.com/2005/12/simple-text-file-operations-in-c/
est ce que je peux avoir comment on peut lire des fichier (image ,video ) d’après notre desktop? CODE(unity/c#) ?
RépondreSupprimer