Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 237 by
sascha.t...@gmail.com: Does not handle spaces in
Windows-style Path correctly
http://code.google.com/p/protobuf-dt/issues/detail?id=237
What steps will reproduce the problem?
1. Create .proto file in a path where at least one folder has a space in
its name.
2. Save .proto file
What is the expected output? What do you see instead?
I see:
[command] protoc --proto_path=C:\Users\myusername\My Stuff\restofpath\src
--java_out=C:\Users\myusername\My Stuff\restofpath\src
C:\Users\myusername\My Stuff\restofpath\FileName.proto
[protoc] C:\Users\myusername\My: warning: directory does not exist.
[protoc] Stuff\restofpath\src: No such file or directory
I expect:
Well, a proper compilation of course. This might work:
[command] protoc --proto_path="C:\Users\myusername\My Stuff\restofpath\src"
--java_out="C:\Users\myusername\My
Stuff\restofpath\src" "C:\Users\myusername\My
Stuff\restofpath\FileName.proto"
What version of the product are you using? On what operating system?
Eclipse 3.7.1
protobuf-dt 1.3.3
Windows 7 64bit
Please provide any additional information below.