GithubHelp home page GithubHelp logo

py-move-file's Introduction

Move file

Write a function move_file that will move a file from one location to another. Function takes command, this is very similar to Linux mv command: mv file.txt some_dir/new_file.txt (this will create new_file.txt in some_dir/ and remove the source file).

If name in destination path ends with / it must be considered as a directory. The app must support only moving of files, and no additional options (flags). Examples:

  • mv file.txt file2.txt simply renames the file.
  • mv file.txt first_dir/second_dir/file2.txt create directory first_dir inside current directory, then create directory first_dir/second_dir, create file2.txt inside and remove the source file.
print(open("file.txt").read())
# Some
# Text
move_file("mv file.txt first_dir/second_dir/third_dir/file2.txt")
print(open("first_dir/second_dir/third_dir/file2.txt").read())
# Some
# Text
open("file.txt")
# FileNotFoundError: [Errno 2] No such file or directory: 'file.txt'

Note: You can create directory by os.mkdir("first") from module os. But to create os.mkdir("first/second"), first directory needs to exist. Function should work with different directory depth. Use os.remove() to remove the file.

Note: Check your code using this checklist before pushing your solution.

py-move-file's People

Contributors

abnormaltype avatar danylott avatar dmytrosvirsa avatar masterpieceelbow avatar y-havryliv avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.