티스토리 뷰
startInfo.WorkingDirectory = @"P:\.NET Project\ReadGRIB_C\Debug";
startInfo.FileName = @"ReadGRIB_C.exe";
startInfo.Arguments = "DFS_SHRT_GRD_GRB1_POP.200810150500";
//startInfo.WindowStyle = ProcessWindowStyle.Hidden;
//Process.Start(startInfo);
using (Process exec = Process.Start(startInfo))
{
exec.WaitForExit();
}
using System;
using System.Diagnostics;
using System.ComponentModel;
namespace MyProcessSample
{
/// <summary>
/// Shell for the sample.
/// </summary>
class MyProcess
{
/// <summary>
/// Opens the Internet Explorer application.
/// </summary>
void OpenApplication(string myFavoritesPath)
{
// Start Internet Explorer. Defaults to the home page.
Process.Start("IExplore.exe");
// Display the contents of the favorites folder in the browser.
Process.Start(myFavoritesPath);
}
/// <summary>
/// Opens urls and .html documents using Internet Explorer.
/// </summary>
void OpenWithArguments()
{
// url's are not considered documents. They can only be opened
// by passing them as arguments.
Process.Start("IExplore.exe", "www.northwindtraders.com");
// Start a Web page using a browser associated with .html and .asp files.
Process.Start("IExplore.exe", "C:\\myPath\\myFile.htm");
Process.Start("IExplore.exe", "C:\\myPath\\myFile.asp");
}
/// <summary>
/// Uses the ProcessStartInfo class to start new processes, both in a minimized
/// mode.
/// </summary>
void OpenWithStartInfo()
{
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
Process.Start(startInfo);
startInfo.Arguments = "www.northwindtraders.com";
Process.Start(startInfo);
}
static void Main()
{
// Get the path that stores favorite links.
string myFavoritesPath =
Environment.GetFolderPath(Environment.SpecialFolder.Favorites);
MyProcess myProcess = new MyProcess();
myProcess.OpenApplication(myFavoritesPath);
myProcess.OpenWithArguments();
myProcess.OpenWithStartInfo();
}
}
}
- Total
- Today
- Yesterday
- 문자 자르기
- 람다식(lambda expression)
- React
- .submit()
- 특정 문자를 기준으로 자르기
- 스프링 시큐리티(spring security)-http basic 인증
- MainActor
- 메이븐(maven)
- java.sql
- jsp 오픈 소스
- await
- In App Purchase
- 스프링 프레임워크(spring framewordk)
- jstl(java standard tag library)-core
- java-개발 환경 설정하기
- java 키워드 정리
- REST API
- 상품 등록
- system.io
- jstl(java standard tag library)
- error-java
- java web-mvc
- System.Diagnostics
- 스프링 프레임워크(spring framework)
- 제품 등록
- 스프링 시큐리티(spring security)
- 인텔리제이(intellij)
- 표현 언어(expression language)
- nl2br
- 진수 변환
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |