saga-file.hpp File Reference
#include <iostream>
Go to the source code of this file.
Define Documentation
#define SAGA_GUARDED_EXEC |
( |
BLOCK |
|
) |
|
Value:
try{ \
BLOCK \
} \
catch (saga::exception const& e) { \
std::cerr << e.what () << std::endl; \
} \
catch (std::exception const& e) { \
std::cerr << e.what() << std::endl; \
} \
catch (...) { \
std::cerr << std::endl; \
} \
\
Function Documentation
void run_test |
( |
std::string |
fileURL |
) |
|
void file_cat |
( |
std::string |
fileURL |
) |
|
void file_remove |
( |
std::string |
fileURL |
) |
|
void file_copy |
( |
std::string |
sourceURL, |
|
|
std::string |
targetURL | |
|
) |
| | |
void file_move |
( |
std::string |
sourceURL, |
|
|
std::string |
targetURL | |
|
) |
| | |
void list_dir |
( |
std::string |
directoryURL |
) |
|