Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
1bb21f35
Commit
1bb21f35
authored
Aug 29, 2023
by
bluelovers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: display file metadata path
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/12289
parent
cd48308a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
modules/ui_extra_networks_user_metadata.py
modules/ui_extra_networks_user_metadata.py
+20
-0
No files found.
modules/ui_extra_networks_user_metadata.py
View file @
1bb21f35
...
...
@@ -2,10 +2,29 @@ import datetime
import
html
import
json
import
os.path
from
pathlib
import
Path
import
gradio
as
gr
from
modules
import
generation_parameters_copypaste
,
images
,
sysinfo
,
errors
from
modules.paths_internal
import
models_path
def
windows_to_unix_style
(
path
):
return
Path
(
path
)
.
as_posix
()
def
exclude_root_path
(
root_path
,
path_to_exclude
):
try
:
relative_path
=
os
.
path
.
relpath
(
path_to_exclude
,
root_path
)
# 如果路径已经在 root_path 之外,relpath 会返回绝对路径
# 所以需要检查路径是否在 root_path 之内
if
not
relative_path
.
startswith
(
'..'
):
return
windows_to_unix_style
(
relative_path
)
except
ValueError
:
pass
# 如果路径无法相对化,或者位于 root_path 之外,则返回原始路径
return
windows_to_unix_style
(
path_to_exclude
)
class
UserMetadataEditor
:
...
...
@@ -98,6 +117,7 @@ class UserMetadataEditor:
stats
=
os
.
stat
(
filename
)
params
=
[
(
'Filename: '
,
os
.
path
.
basename
(
filename
)),
(
'Path: '
,
exclude_root_path
(
models_path
,
filename
)),
(
'File size: '
,
sysinfo
.
pretty_bytes
(
stats
.
st_size
)),
(
'Hash: '
,
shorthash
),
(
'Modified: '
,
datetime
.
datetime
.
fromtimestamp
(
stats
.
st_mtime
)
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M'
)),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment