About
Cinema 4D's API provides multiple utility functions to work with files.
{
}
Bool ShowInFinder(const Filename &fn, Bool open)
void MessageDialog(const maxon::String &str)
Manages file and path names.
Definition: c4d_file.h:94
Definition: string.h:1235
return OK
Definition: apibase.h:2690
#define MAXON_SOURCE_LOCATION
Definition: memoryallocationbase.h:67
const char const char * msg
Definition: object.h:438
{
ApplicationOutput(
"Error: Didn't find a file called \"testdocument.txt\" below the desktop directory."_s);
}
{
const maxon::String errMsg =
"Error: The selected file ("_s +
src +
") doesn't exist."_s;
}
fnNewDir += "myDir";
fnNewDir += "mySubDir1";
fnNewDir += "mySubDir2";
{
}
InfoStop(fnNewDir,
"New directory successfully created, watch opened Explorer/Finder"_s)
iferr_return;
{
const maxon::String errMsg =
"Error: Failed to copy file ("_s +
src +
") to "_s + dst;
}
InfoStop(fnDest,
"Source file successfully copied to new directory, watch opened Explorer/Finder"_s)
iferr_return;
fnDestRenamed.
SetFile(
"newName.test");
{
const maxon::String errMsg =
"Error: Failed to rename file ("_s + dest +
") to "_s + renamed;
}
InfoStop(fnDestRenamed,
"File successfully renamed, watch opened Explorer/Finder"_s)
iferr_return;
fnDestMoved += "myDir";
fnDestMoved += fnDestRenamed.
GetFile();
if (!
GeFMove(fnDestRenamed, fnDestMoved))
{
const maxon::String errMsg {
"Error: Failed to move file ("_s + renamed +
") to "_s + moved };
}
InfoStop(fnDestMoved,
"File successfully moved, watch opened Explorer/Finder"_s)
iferr_return;
fnDelDir += "myDir";
{
const maxon::String errMsg =
"Error: Failed to delete created directories and files ("_s + dir +
")"_s;
}
InfoStop(fnDestMoved,
"Successfully deleted all directories/files created in this test, watch opened Explorer/Finder"_s)
iferr_return;
const Filename GetDirectory() const
const Filename GetFile() const
void SetFile(const Filename &str)
PyObject * src
Definition: abstract.h:305
#define C4D_PATH_DESKTOP
OS desktop directory.
Definition: c4d_file.h:1923
#define GE_FKILL_RECURSIVE
Delete the children of a directory.
Definition: c4d_file.h:1731
#define GE_FKILL_DIRECTORY
Delete directories.
Definition: c4d_file.h:1730
#define ApplicationOutput(formatString,...)
Definition: debugdiagnostics.h:210
const Filename GeGetC4DPath(Int32 whichpath)
Bool GeFExist(const Filename &name, Bool isdir=false)
Bool GeFCopyFile(const Filename &source, const Filename &dest, Int32 flags)
Bool GeFKill(const Filename &name, Int32 flags=0)
Bool GeFRename(const Filename &source, const Filename &dest)
Bool GeFCreateDirRec(const Filename &name)
Bool GeSearchFile(const Filename &directory, const Filename &name, Filename *found)
Bool GeFMove(const Filename &source, const Filename &dest)
#define iferr_return
Definition: resultbase.h:1519
File Functions
All the usual functions to work with files (copy, rename, delete,...) are available in Cinema 4D's API:
- Note
- If a new file needs to be created from scratch, please see BaseFile Manual or HyperFile Manual.
- Warning
- Beware, GeFKill() deletes files permanently. The files will not be moved to system's trash can.
- Note
- For similar functions of the MAXON API see File Functions.
Folders/Directories
Creation
Default Paths
- Note
- For similar functions of the MAXON API see Application.
File Attributes
{
sAttr = ""_s;
sAttr += "RO_"_s;
else
sAttr += "RW_"_s;
sAttr += "H_"_s;
else
sAttr += "__"_s;
sAttr += "L_"_s;
else
sAttr += "__"_s;
sAttr += "r"_s;
else
sAttr += "_"_s;
sAttr += "w"_s;
else
sAttr += "_"_s;
sAttr += "x"_s;
else
sAttr += "_"_s;
sAttr += "r"_s;
else
sAttr += "_"_s;
sAttr += "w"_s;
else
sAttr += "_"_s;
sAttr += "x"_s;
else
sAttr += "_"_s;
sAttr += "r"_s;
else
sAttr += "_"_s;
sAttr += "w"_s;
else
sAttr += "_"_s;
sAttr += "x"_s;
else
sAttr += "_"_s;
}
maxon::UInt32 UInt32
Definition: ge_sys_math.h:61
#define GE_FILE_ATTRIBUTE_GROUP_R
Group read file permission.
Definition: c4d_file.h:1751
#define GE_FILE_ATTRIBUTE_READONLY
File is read-only.
Definition: c4d_file.h:1745
#define GE_FILE_ATTRIBUTE_OWNER_W
Owner write file permission.
Definition: c4d_file.h:1749
#define GE_FILE_ATTRIBUTE_GROUP_X
Group execute file permission.
Definition: c4d_file.h:1753
#define GE_FILE_ATTRIBUTE_GROUP_W
Group write file permission.
Definition: c4d_file.h:1752
#define GE_FILE_ATTRIBUTE_PUBLIC_X
Public execute file permission.
Definition: c4d_file.h:1756
#define GE_FILE_ATTRIBUTE_PUBLIC_R
Public read file permission.
Definition: c4d_file.h:1754
#define GE_FILE_ATTRIBUTE_OWNER_X
Owner execute file permission.
Definition: c4d_file.h:1750
#define GE_FILE_ATTRIBUTE_HIDDEN
File is hidden.
Definition: c4d_file.h:1746
#define GE_FILE_ATTRIBUTE_LOCKED
File is locked (Mac only).
Definition: c4d_file.h:1747
#define GE_FILE_ATTRIBUTE_PUBLIC_W
Public write file permission.
Definition: c4d_file.h:1755
#define GE_FILE_ATTRIBUTE_OWNER_R
Owner read file permission.
Definition: c4d_file.h:1748
UInt32 GeFGetAttributes(const Filename &name)
File Execution
- GeExecuteFile(): Opens the file as if the user double-clicked it. The default application for this file will open.
- GeExecuteProgram(): Asynchronously executes an application.
- GeOpenHTML(): Opens an URL in the user's default web browser.
Volumes/Drives
File Type Identification
- GeIdentifyFile(): Identifies the type of a file.
- Parameter "recognition", identification flags:
- IdentifyImage(): Identifies the type of an image file.
- Return value, image types:
- GeGetMovieInfo(): Retrieves information from a movie file.
- Note
- For similar function of the MAXON API see FileFormatHandlerInterface.
Documents
BaseDocument class contains functions to load documents from files (LoadDocument() and LoadFile()). See Disc I/O in the BaseDocument Manual for more information.
Images
BaseBitmap class contains functions to read/write images from/to files (BaseBitmap::Init() and BaseBitmap::Save()). Images can also be read/written from/to a HyperFile (HyperFile::ReadImage() and HyperFile::WriteImage()). See Disc I/O in the BaseBitmap Manual and BaseBitmap in HyperFile Manual for more information.
Sounds
Sound files can be loaded and saved with the respective functions (BaseSound::Load() and BaseSound::Save()) of the BaseSound class.
Miscellaneous
- ShowInFinder(): Shows the file/path in the Finder (Mac) or Explorer (Windows).
Further Reading