Great video on how to use Python for day to day tasks. Thank you. Please make more of these types of "system admin" videos.👍
@Max9066211 ай бұрын
Dieses Toturial ist total klasse, vielen Dank
@cimplyllc Жыл бұрын
Very nice tutorial. Thank you for making it. The final cleanup script is a good way to close out the video.
@oddzhang2 жыл бұрын
it's great.previous time I have used os module to deal with my video files, such as rename,move,etc.but my code was too tricky to read and not easy to rebuild.this video inspire me to modify my code!
@shasvat0 Жыл бұрын
why change it if it worked
@duduza110 ай бұрын
@@shasvat0 XD
@SatishSingh-cp3wo2 жыл бұрын
wish u had made this video 6 months ago. i have already figured out all this but it took me a lot of digging.
@Knight83652 жыл бұрын
Thank you and more like this please! I've just been trying to implement a recursive folder search, remove or rename in Bash and it had me tearing my hair out. It would have been much simpler in Python.
@hadadwasiim82482 жыл бұрын
Nice video. This helped me a lot in renaming and moving files and also to add exceptions if file can`t be moved and renamed. :)
@RRDGamer Жыл бұрын
Thank you so much for this simple tutorial
@dhirajp46772 жыл бұрын
Thank you Patrick..it was very informative..hoping to see a Playlist of file handling videos..
@bachphan1160 Жыл бұрын
very nice and useful, your tutorial is so simple ! thank you. Loved it
@sheikhakbar20672 жыл бұрын
Liked; already a subscriber; and saved to my python useful tips and tricks playlist!
@bachirgab3084 Жыл бұрын
thanks for this lessons
@kk55922 жыл бұрын
which IDE do you use?
@octaviandatcu86772 жыл бұрын
Visual Studio Code it seems.
@minanabil10352 жыл бұрын
WOW new for me. thanks for the video
@VinodKRamachandra2 жыл бұрын
Very nice tutorial. Thank you
@patloeber2 жыл бұрын
Glad it was helpful!
@jigarhathiyani2 жыл бұрын
Thank you for the tutorial Can you please help me with this - how to copy specifiy list of files from one folder to another (if we dont have complete name of the file)
@VRchitecture2 жыл бұрын
It’s better to convert your file’s extension to lower case before type checking, since there could be MP4 and mp4 on desktop
@toyomade Жыл бұрын
How would this handle a window’s indexing error? While using an unlocked Veracrypt container, power was lost. It’s not repairable and the files are still there and can be opened but when trying to copy them off, an error gets generated after every single one requiring a click. While using native copy/paste functions in Windows. This wouldn’t be so bad if this was a handful of files, or even a few hundred, I could make an afternoon out of it and just get it done. However, we’re talking thousands of files here. Basically photos of my kids entire childhoods. I really don’t want to lose them but it’s incredibly annoying to manually pull them off. And I no longer use Veracrypt unless I have battery backup
@lumberapple88204 ай бұрын
Rename 0:00 Move 6:48 Copy: 8:43 Delete 9:28
@blackmane19992 жыл бұрын
Could u please do a video on ONVIF for python? Thatd be a great help!
@Kaviranghari6 ай бұрын
How can i copy an image to my clipboard using python
@abdellahelguermez37862 жыл бұрын
Thank u 🙏🏻
@niteshnunia82932 жыл бұрын
Thanks really useful.
@gabrielalmeida60852 жыл бұрын
What is your macbook model?
@ivarc2562 жыл бұрын
Haaa, beautiful. thank you
@paulorosado6888 Жыл бұрын
Thanks, bro
@anirbanc882 жыл бұрын
its awesome!
@NexInspireHub5 ай бұрын
which theme is this?
@economicblast11 ай бұрын
it's saying name isn't identified. idk how you ran the code without identifying the name
@ivarc2562 жыл бұрын
Ok! wish you make one for an.ordering. system.. thanks
@kvelez Жыл бұрын
import os print("FileName || Extension") for file in os.listdir(): name, ext = os.path.splitext(file) name_split = name.split('-') ext_split = ext.split('-') print(f"{name_split}{ext_split}") ============================== import os print("FileName || Extension") for file in os.listdir(): name, ext = os.path.splitext(file) splitted = name.split("-") splitted = [s.strip() for s in splitted] new_name = f"{splitted[0]}{ext}" print(new_name)
@serychristianrenaud2 жыл бұрын
Thank ... 👏
@bayuganspride2 жыл бұрын
kewl
@__________________________69102 жыл бұрын
Noice 😃
@ericbroun46572 жыл бұрын
❤❤❤❤❤
@umeleumab.marcus84972 жыл бұрын
Poor color choice, difficult to read at first instance.