exportOutDirName relative to source file location
See original GitHub issueLoving the extension, but one thing that I still can’t get right is how to properly set the output directory, even looking at #82 and such.
What I’m looking for:
a/
b/
diagrams/
source/
mydiagram.puml
out/
My Diagram.png
If I just set exportOutDirName to…
out
, I getout/a/b/diagrams/source/My Diagram.png
./out
, I getout/a/b/diagrams/source/My Diagram.png
.
, I geta/b/diagrams/source/My Diagram.png
a/b/diagrams/out
, I geta/b/diagrams/out/a/b/diagrams/source
Is there an existing way to do what I want? exportOutDirName
sets the root of output path, but even with exportSubFolder
as false, all directories are still copied (just no separate directory based on the diagram source file name). Maybe an extra option is needed to control the behavior about how directories are copied?
Issue Analytics
- State:
- Created 5 years ago
- Comments:15 (7 by maintainers)
Top Results From Across the Web
R: sourcing files using a relative path - Stack Overflow
Assume that source is always relative because the working directory of the file being sourced is set to the directory where the file...
Read more >source file directories - Google Groups
I am trying to work out the Ceedling system. I managed to run it correctly when the needed source files are placed in...
Read more >How does Vivado handle the remote source files when project ...
I have a Vivado project with remote sources (source files that do not reside in a directory under the Vivado project directory).
Read more >relative source file referencing - Flexera Community
Resolved my own question. Turns out the built-in path variable ISProjectDir is effectively the same as current working directory and can be used ......
Read more >exportOutDirName relative to source file location - TypeScript ...
exportOutDirName relative to source file location - TypeScript vscode-plantuml. Loving the extension, but one thing that I still can't get right is how...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@larslue, About your proposal, consider dir structure like this:
It would be:
To your case, try:
This is a good and valid observation, I think. (I don’t have a solution proposal though.)