Skip to content

Instantly share code, notes, and snippets.

@dl6nm
Created May 31, 2019 10:17
Show Gist options
  • Save dl6nm/3397bf251a33488d449bd8df800d3bee to your computer and use it in GitHub Desktop.
Save dl6nm/3397bf251a33488d449bd8df800d3bee to your computer and use it in GitHub Desktop.
Open a console window with current working directory
"""Open a console window with current working directory"""
import os
import platform
if platform.system() == 'Windows':
os.system('powershell -Command "Start-Process cmd -Verb RunAs -ArgumentList "/k", "cd", "{}""'.format(os.getcwd()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment