Skip to content

Commit

Permalink
Merge pull request #1 from bootjp/master
Browse files Browse the repository at this point in the history
support symbolic link dir
  • Loading branch information
Narazaka authored Aug 14, 2019
2 parents aed37b3 + 9e75a30 commit 6a023ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vrc_shot_folder.nim
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type SrcDst = tuple
var files: seq[SrcDst] = @[]

for file in walkDir(vrchatPictureDir):
if file.kind == pcFile:
if file.kind == pcFile or file.kind == pcLinkToFile:
let matched = file.path.find(timeRe)
if matched.isSome:
var datetime = parse(matched.get.match, "yyyy-MM-dd'_'HH-mm-ss'.'fff'.png'", local())
Expand Down

0 comments on commit 6a023ad

Please sign in to comment.