Advertisement
Guest User

chuj

a guest
May 6th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. if (File.Exists(@"dostep\\access.txt"))
  2. {
  3. File.Delete(@"dostep\\access.txt");
  4. File.Create(@"dostep\\access.txt");
  5. System.IO.StreamWriter file = new System.IO.StreamWriter("dostep\\access.txt");
  6. file.WriteLine(sciezka);
  7. file.Close();
  8. }
  9. else
  10. {
  11. File.Create(@"dostep\\access.txt");
  12. System.IO.StreamWriter file = new System.IO.StreamWriter("dostep\\access.txt");
  13. file.WriteLine(sciezka);
  14. file.Close();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement