CloudFileOp
サマリー
Performs file related operations that are cloud specific.
ディスカッション
This class cannot be instantiated directly. An instance of this class is returned by the AIOFile object's cloud property.
方法
clearcache()
Clears file properties and BLOB region cache. Call this method when an external process updates the file.
cloud_io = AIO(r"C:\data\datacloud.acs")
rcsfile = cloud_io.open(r'testfile.txt', 'r')
rcsfile.cloud.clearcache()
usebufferedreader()
Caches last read bytes.
cloud_io = AIO(r"C:\data\datacloud.acs")
rcsfile = cloud_io.open(r'testfile.txt', 'r')
rcsfile.cloud.usebufferedreader()
usecachedfile({blocksize}, {cachesize})
Uses least recently used (LRU) block cache for handling files on cloud.
| 名前 | 説明 | データ タイプ |
|---|---|---|
|
blocksize (オプション) |
The block size. The default value is 32768. |
Integer |
|
cachesize (オプション) |
The cache size. The default value is 0. |
Integer |
cloud_io = AIO(r"C:\data\datacloud.acs")
rcsfile = cloud_io.open(r'testfile.txt', 'r')
rcsfile.cloud.usecachedfile(blocksize=32768, cachesize=0)