Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/bpath.c
| Show All 17 Lines | |||||
| * \ingroup bli | * \ingroup bli | ||||
| */ | */ | ||||
| /* TODO, | /* TODO, | ||||
| * currently there are some cases we don't support. | * currently there are some cases we don't support. | ||||
| * - passing output paths to the visitor?, like render out. | * - passing output paths to the visitor?, like render out. | ||||
| * - passing sequence strips with many images. | * - passing sequence strips with many images. | ||||
| * - passing directory paths - visitors don't know which path is a dir or a file. | * - passing directory paths - visitors don't know which path is a dir or a file. | ||||
| * */ | */ | ||||
| #include <sys/stat.h> | #include <sys/stat.h> | ||||
| #include <string.h> | #include <string.h> | ||||
| /* path/file handling stuff */ | /* path/file handling stuff */ | ||||
| #ifndef WIN32 | #ifndef WIN32 | ||||
| # include <dirent.h> | # include <dirent.h> | ||||
| ▲ Show 20 Lines • Show All 863 Lines • Show Last 20 Lines | |||||