/* ========================================================================= zfile - helper functions for working with files. ------------------------------------------------------------------------- Copyright (c) 1991-2013 iMatix Corporation Copyright other contributors as noted in the AUTHORS file. This file is part of CZMQ, the high-level C binding for 0MQ: http://czmq.zeromq.org. This is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABIL- ITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . ========================================================================= */ #ifndef __ZFILE_H_INCLUDED__ #define __ZFILE_H_INCLUDED__ #ifdef __cplusplus extern "C" { #endif // @interface // Return 1 if file exists, else zero CZMQ_EXPORT bool zfile_exists (const char *filename); // Return size of file, or -1 if not found CZMQ_EXPORT ssize_t zfile_size (const char *filename); // Return file mode CZMQ_EXPORT mode_t zfile_mode (const char *filename); // Delete file. Does not complain if the file is absent CZMQ_EXPORT int zfile_delete (const char *filename); // Check if file is 'stable' CZMQ_EXPORT bool zfile_stable (const char *filename); // Create a file path if it doesn't exit CZMQ_EXPORT int zfile_mkdir (const char *pathname); // Remove a file path if empty CZMQ_EXPORT int zfile_rmdir (const char *pathname); // Set private file creation mode; all files created from here will be // readable/writable by the owner only. CZMQ_EXPORT void zfile_mode_private (void); // Reset default file creation mode; all files created from here will use // process file mode defaults. CZMQ_EXPORT void zfile_mode_default (void); // Self test of this class CZMQ_EXPORT int zfile_test (bool verbose); // @end #ifdef __cplusplus } #endif #endif // __ZFILE_H_INCLUDED__