gpt4 book ai didi

.net - 使用 PowerShell/C# 从 cmd 批处理保存文件对话框

转载 作者:行者123 更新时间:2023-12-04 19:09:42 32 4
gpt4 key购买 nike

我正在尝试从 Windows 批处理脚本中获取基于 gui 的保存文件作为对话框。我想在保存和取消按钮的左侧有一个新的文件夹按钮。没有预定义的文件类型。所以它可能必须设置为所有文件。

类似的东西:Save Dialog

(忽略左上角的按钮)

我从最佳答案中找到了一个很好的解决方案,用于在此处打开文件:
File / folder chooser dialog from a Windows batch script

对于另存为对话框,最好有一个类似的解决方案。最重要的是,我希望能够将路径和文件名设置为自己的变量。出于示例的目的或目的。我们可以插入“Hello World”作为输出。

示例:

echo Hello World > %variable.path%%variable.file%

下面的示例是来自链接帖子的直接引用。
:: chooser.bat
:: launches a File... Open sort of file chooser and outputs choice to the console

@echo off
setlocal enabledelayedexpansion

:: Does powershell.exe exist within %PATH%?
for %%I in (powershell.exe) do if "%%~$PATH:I" neq "" (
set chooser=powershell "Add-Type -AssemblyName System.windows.forms|Out-Null;$f=New- Object System.Windows.Forms.OpenFileDialog;$f.InitialDirectory='%cd%';$f.Filter='Text Files (*.txt)|*.txt|All Files (*.*)|*.*';$f.showHelp=$true;$f.ShowDialog()|Out-Null;$f.FileName"
) else (
rem :: If not, compose and link C# application to open file browser dialog
set chooser=%temp%\chooser.exe
>"%temp%\c.cs" echo using System;using System.Windows.Forms;
>>"%temp%\c.cs" echo class dummy{
>>"%temp%\c.cs" echo public static void Main^(^){
>>"%temp%\c.cs" echo OpenFileDialog f=new OpenFileDialog^(^);
>>"%temp%\c.cs" echo f.InitialDirectory=Environment.CurrentDirectory;
>>"%temp%\c.cs" echo f.Filter="Text Files (*.txt)|*.txt|All Files (*.*)|*.*";
>>"%temp%\c.cs" echo f.ShowHelp=true;
>>"%temp%\c.cs" echo f.ShowDialog^(^);
>>"%temp%\c.cs" echo Console.Write^(f.FileName^);}}
for /f "delims=" %%I in ('dir /b /s "%windir%\microsoft.net\*csc.exe"') do (
if not exist "!chooser!" "%%I" /nologo /out:"!chooser!" "%temp%\c.cs" 2>NUL
)
del "%temp%\c.cs"
if not exist "!chooser!" (
echo Error: Please install .NET 2.0 or newer, or install PowerShell.
goto :EOF
)
)

:: capture choice to a variable
for /f "delims=" %%I in ('%chooser%') do set "filename=%%I"

echo You chose %filename%

:: Clean up the mess
del "%temp%\chooser.exe" 2>NUL
goto :EOF

enter image description here

我试图调整上面的例子以用于另存为。但我对它的理解还不够好。这就是为什么我首先使用批处理脚本而不是更高功能的编程语言。

我对上述内容的理解是,它是 Windows 批处理脚本,它调用 PowerShell(如果它存在)或 PowerShell 不存在(如果存在)。如果两者都不存在,我将使用我现有的代码作为替代。替代方法只是让用户手动输入完整路径。
echo Set path to file:
echo Path and file cannot contain any spaces. e.g. c:\folder_name\file.ext
echo Be sure you include the filename.
SET /P path1=">"?
cls
echo path set to: %path1%
pause
cls
goto :eof

我会问现有的职位。但这在站点规则中是不允许的。所以我分开问了。欢迎任何帮助或见解。

感谢您的时间和精力。

最佳答案

这是使用 Windows 窗体 ( SaveFileDialog Class ) 的示例。

Rq :您不需要用于创建新目录的按钮,因为您只需右键单击文件面板即可。

Clear-Host
Add-Type -AssemblyName system.Windows.Forms
$saveFile = New-Object System.Windows.Forms.SaveFileDialog

$saveFile.Filter = "All files (*.*)|*.*"
$saveFile.FilterIndex = 2
$saveFile.RestoreDirectory = $true

$rc = $saveFile.ShowDialog()
if ($rc -eq [System.Windows.Forms.DialogResult]::OK)
{
$saveFile.FileName
[System.Windows.Forms.MessageBox]::Show("You can save $($saveFile.FileName)", "Ok")
}

请注意,消息框在正常时不会出现在 Windows 顶部。

关于.net - 使用 PowerShell/C# 从 cmd 批处理保存文件对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16348738/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com