google / google/google-java-format
Fails to format files with a space in the path
未关闭
- 主要语言
- Java
- 星标
- 6.2k
- 派生
- 937
- 平均合并
- 6 分钟
- 30 天内合并 PR
- 3
描述
I am running google-java-format on a Windows machine. When I provide it a file (with the "@" syntax) containing a list of files to format, it will fail to format files that contain a space in the path. Example:
```
>type files.lst
C:\path\with\a space\Some.java
>java -jar google-java-format.jar @files.lst
Skipping non-Java file: C:\path\with\a
space\Some.java: could not read file: space\Some.java
```
Placing double-quotes around the path does not work, either.
It _does_, however, handle passing in the filenames in the command string, provided they are surrounded by double-quotes, e.g.:
```
>java -jar google-java-format.jar "C:\path\with\a space\Some.java"
```
贡献指南
评估
这个 Issue 还没有评估数据。