LoginSignup
0
1

More than 5 years have passed since last update.

[UIPath] 文字列にエスケープ文字を入れる方法

Last updated at Posted at 2018-11-13

エスケープ文字を入れるときの文字列

パスにスペースが含まれる場合のコマンドを入力したいとき
xcopy /e C:\1. test01 C:\2.result01

空白が含まれるバスのみを“”“ ”””で囲むことで""が文字列として認識される
“xcopy /e " & “”“C:\1. test01””” & " C:\2.result01"

追記:

全てを囲むと上手く動作しなかった
“”“xcopy /e C:\1. test01 C:\2.result01”””

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1