コード例 #1
0
ファイル: OssFS.cpp プロジェクト: dluobo/cloudfs
/*
 * THe mode information should be stored in the OSS server
 */
int OssFS::chmod(const char *path, mode_t mode) {
	log_debug("path:%s", path);
	OssObject *obj = this->find_file(path);
		
	if (obj != NULL) {
		obj->set_mode(mode);
	}
	return 0;
}