2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Googleスプレッドシート PDF書出し 不要なファイル名をPowerShellで一括置き換え

Posted at

Googleスプレッドシートで、PDFを書き出した際に、ファイル名に「xlsx」が記載されてしまう。
複数ファイルがあり、手入力でのリネーム作業を避けたいと思ったので、一括リネームを試みたのでメモします。

1.任意のフォルダにリネームしたいファイル群を置く。
2.PowerShellを立ち上げる
3.下記を打ち込んでエンター

Get-ChildItem【対象のパス】 | Rename-Item -NewName { $_.Name -replace '置換えしたい文字','置換え後の文字' }

参考:
参考先

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?