fork(2) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <iostream>
  4. #include <fstream>
  5. using namespace std;
  6.  
  7. bool ArqExiste(string Arquivo)
  8. {
  9. ifstream verificacao (Arquivo.c_str());
  10. if(verificacao.is_open())
  11. {
  12. verificacao.close();
  13. return true;
  14. }
  15. else
  16. {
  17. verificacao.close();
  18. return false;
  19. }
  20. }
  21.  
  22. int main()
  23. {
  24. string file = "C:\\Temp\\aipflib.log";
  25.  
  26. printf("%b", ArqExiste(file));
  27. }
Success #stdin #stdout 0s 3232KB
stdin
Standard input is empty
stdout
%b