当前位置: 首页>>代码示例>>Python>>正文


Python Path.size方法代码示例

本文整理汇总了Python中unipath.Path.size方法的典型用法代码示例。如果您正苦于以下问题:Python Path.size方法的具体用法?Python Path.size怎么用?Python Path.size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在unipath.Path的用法示例。


在下文中一共展示了Path.size方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: dump_path

# 需要导入模块: from unipath import Path [as 别名]
# 或者: from unipath.Path import size [as 别名]
def dump_path(path, prefix="", tab="    ", file=None):
    if file is None:
        file = sys.stdout
    p = Path(path)
    if   p.islink():
        print >>file, "%s%s -> %s" % (prefix, p.name, p.read_link())
    elif p.isdir():
        print >>file, "%s%s:" % (prefix, p.name)
        for p2 in p.listdir():
            dump_path(p2, prefix+tab, tab, file)
    else:
        print >>file, "%s%s  (%d)" % (prefix, p.name, p.size())
开发者ID:Alwnikrotikz,项目名称:promogest,代码行数:14,代码来源:tools.py

示例2: split_file

# 需要导入模块: from unipath import Path [as 别名]
# 或者: from unipath.Path import size [as 别名]
def split_file(path, number_of_files, splitted_file_size, output_file_name, chunk_size, no_increase):
    path = Path(path)
    if not splitted_file_size is None:
        splitted_file_size = get_real_size(splitted_file_size)
    chunk_size = get_real_size(chunk_size)
    origin_file_size = path.size()
    if splitted_file_size and number_of_files is None:
        if no_increase:
            number_of_files = int(origin_file_size / splitted_file_size)
        else:
            number_of_files = ceil(float(origin_file_size) / splitted_file_size)
    else:
        if number_of_files is None:
            number_of_files = 5
        splitted_file_size = origin_file_size / number_of_files

    if output_file_name is None:
        output_file_name = path.name

    new_files_name = '{output_file_name}.part%d'.format(output_file_name=output_file_name)
    new_files = [new_files_name % i for i in range(1, int(number_of_files)+1)]

    with open(path, 'rb') as origin_file:
        file_iter = read_in_chunks(origin_file, chunk_size)
        for cur_file_name in new_files:
            is_last = cur_file_name == new_files[-1]
            cur_file_path = Path(cur_file_name)
            cur_file_size = 0
            with open(cur_file_path, 'wb') as cur_writing_file:
                while (cur_file_size < splitted_file_size if not is_last else True):
                    try:
                        piece = next(file_iter)
                    except StopIteration:
                        break
                    cur_writing_file.write(piece)
                    cur_file_size += chunk_size
开发者ID:zokis,项目名称:zsplitjoin,代码行数:38,代码来源:split_files.py

示例3: print

# 需要导入模块: from unipath import Path [as 别名]
# 或者: from unipath.Path import size [as 别名]
# File Attributes and permissions
print("\n*** File Attributes and permissions")
# noinspection PyArgumentList
print(here.atime())  # Last access time; seconds past epcoh
# noinspection PyArgumentList
print(here.ctime())  # Last permission or ownership modification; windows is creation time;
# noinspection PyArgumentList
print(here.isfile())  # Is a file; symbolic links are followed.
print(here.isdir())  # Is a directory; symbolic links are followed.
# noinspection PyArgumentList
print(here.islink())  # Is a symbolic link
# noinspection PyArgumentList
print(here.ismount())  # Is a mount point; ie the parent is on a different device.
# noinspection PyArgumentList
print(here.exists())  # File exists; symbolic links are followed.
# noinspection PyArgumentList
print(here.lexists())  # Same as exists but symbolic links are not followed.
# noinspection PyArgumentList
print(here.size())  # File size in bytes.
print(Path("/foo").isabsolute())  # Is absolute and not relative path

# Epoch?
print("\n*** gmtime")
print(gmtime(0))


# Stat and lstat
print("\n*** Stat and lstat")
print(here.stat())  # File stat object for size, permissions etc. Symbolic links are followed.
print(here.lstat())  # Same as stat  but symbolic links are not followed.
开发者ID:lukewickstead,项目名称:PythonPit,代码行数:32,代码来源:unipath_example.py


注:本文中的unipath.Path.size方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。