파일검색 현재폴더 import os 경로 = "C:\\Users\\YunHo\\Desktop" def search_file(경로): file_list = os.listdir(경로) for f in file_list: if (f.find('식단')is not -1): return(경로+'\\' +f) if __name__ == '__main__': print(search_file(경로)) 프로그래밍언어/Python 2018.09.22
파일 검색 하위폴더포함 import os def allfiles(path): res = [] for root, dirs, files in os.walk(path): rootpath = os.path.join(os.path.abspath(path), root) for file in files: filepath = os.path.join(rootpath, file) if (file.find('식단')is not -1): res.append(filepath) return res if __name__ == '__main__': print(allfiles("C:\\Users\\YunHo\\Desktop")) 프로그래밍언어/Python 2018.09.22
파이썬 해상도변경 # Copyright (C) 2014-2016 Jurriaan Bremer. # This file is part of VMCloak - http://www.vmcloak.org/. # See the file 'docs/LICENSE.txt' for copying permission. import sys import ctypes from ctypes import c_char, c_ushort, c_uint, c_char_p from ctypes import windll, Structure, POINTER, sizeof # http://blogs.technet.com/b/heyscriptingguy/archive/2010/07/07/hey-scripting-guy-how-c.. 프로그래밍언어/Python 2017.05.08
윈도우 서비스에 프로그램을 등록및 삭제하는 방법. 윈도우 서비스에 프로그램을 등록및 삭제하는 방법. 1. 윈도우 서비스 등록. C:\>sc create {서비스이름} binPath={어플리케이션 실행파일} C:\>sc create "IBMWAS61Service" binPath="C:\WAS\WebSphere\AppServer\bin\startServer.bat" 2. 윈도우 서비스 삭제. C:\>sc delete {서비스이름} C:\WAS\WebSphere\AppServer\bin>sc delete .. 프로그래밍언어/VB.NET 2017.05.03
윈도우서비스 종료& 시작 Imports System.ServiceProcess Module Module1 Sub Main() Dim sc As New ServiceController("UxSMS") sc.Stop() 'sc.Start() End Sub End Module '에어로 종료 시작 프로그래밍언어/VB.NET 2017.03.06
멀티쓰레드 활용간 오류시 임시처방 CheckForIllegalCrossThreadCalls = False 스레드로 사용할 함수내에 다음과같이 입력함. CheckForIllegalCrossThreadCalls = False 예제 Imports System.Threading Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MessageBox.Show("This is the main thread") End Sub Private Sub ThreadTask() CheckForIllegalCrossThreadCalls = False D.. 프로그래밍언어/VB.NET 2016.10.25
CPU온도 가져오기 http://stackoverflow.com/questions/31774626/how-can-i-see-temperature-of-cpu-using-vb-net-with-open-hardware-monitor-dll http://openhardwaremonitor.org/ Imports System.Management Imports System Imports OpenHardwareMonitor Imports OpenHardwareMonitor.Hardware Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.. 프로그래밍언어/VB.NET 2016.10.09
마우스 클릭 import ctypes import time MOUSE_LEFTDOWN = 0x0002 # left button down MOUSE_LEFTUP = 0x0004 # left button up MOUSE_RIGHTDOWN = 0x0008 # right button down MOUSE_RIGHTUP = 0x0010 # right button up MOUSE_MIDDLEDOWN = 0x0020 # middle button down MOUSE_MIDDLEUP = 0x0040 # middle button up x = 1 y=540 ctypes.windll.user32.SetCursorPos(x,y), ctypes.windll.user32.mouse_event(MOUSE_LEFT.. 프로그래밍언어/Python 2015.11.09
파이썬 쿠키유지 req= urllib.request.Request(url) r=urllib.request.urlopen(req) c = r.headers.get('Set-Cookie') 프로그래밍언어/Python 2015.02.01
문자열 숫자열 치환 // 숫자에서 문자로 바꾸기 String si = Integer.toString(i) String sf = Float.toString(f) String sl = Long.toString(l) String sd = Double.toString(d) // 문자에서 숫자로 바꾸기 int i = Integer.parseInt(si); float f = Float.parseFloat(sf); long l = Long.parseLong(sl); double d = Double.parseDouble(sd); 프로그래밍언어/안드로이드 2014.11.27