python spostare file libreria os code example
Example 1: come traferire file python
os.unlink("C:\\lezione20\\cancellami.txt")
Example 2: come traferire file python
os.rename("C:\\lezione20\\rinominami.txt", "file_rinominato.txt")
os.unlink("C:\\lezione20\\cancellami.txt")
os.rename("C:\\lezione20\\rinominami.txt", "file_rinominato.txt")