Advertisement
obernardovieira

Tornar ficheiro oculto

Jun 13th, 2013
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. #include <Windows.h>
  3.  
  4. int main() {
  5.     SetFileAttributes(TEXT("C:\\dest\\helloworldxd.exe"),FILE_ATTRIBUTE_HIDDEN);
  6.     system("pause");
  7.     return 1;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement