mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2026-03-24 21:00:19 +00:00
[GH-ISSUE #8329] [FR] Allow linking to external files without copying them into AppFlowy #3735
Labels
No labels
2024
2025
2026
acct mgmt
AI
automation
bug
calendar
ci
CJK
cloud
code-block
collaboration
copy-paste
database
data migration
data sync
deploy
desktop
develop
develop
documentation
duplicate
editor
editor-plugin
emoji
export
files
flutter-only
follow-up
formula
good first issue for devs
good first issue for experienced devs
grid
hacktoberfest
HACKTOBERFEST-ACCEPTED
help wanted
i18n
icons
images
importer
improvements
infra
install
integrations
IR
kanban board
login
look and joy
mentorship
mobile
mobile
needs design
new feature
new feature
non-coding
notes
notifications
onboarding
organization
P0+
permission
platform-linux
platform-mac
platform-windows
plugins
program
pull-request
Q1 25
Q1 26
Q2 24
Q2 25
Q3 24
Q3 25
Q4 24
Q4 25
react
regression
rust
rust
Rust-only
Rust-only
Rust-starter
Rust-starter
self-hosted
shortcuts
side panel
slash-menu
sync v2
table
tablet
task
tauri
templates
tests
themes
translation
v0.5.6
v0.5.8
v0.5.9
v0.6.0
v0.6.1
v0.6.4
v0.6.7
v0.6.8
v0.7.1
v0.7.4
v0.7.4
v0.7.5
v0.7.6
v0.7.7
v0.7.8
v0.8.0
v0.8.4
v0.8.5
v0.8.9
web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
AppFlowy-IO/AppFlowy#3735
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KriszDK on GitHub (Nov 6, 2025).
Original GitHub issue: https://github.com/AppFlowy-IO/AppFlowy/issues/8329
Description
When inserting a file using /file, AppFlowy always creates a copy of the selected file inside its internal files directory.
This means the file cannot be edited in its original location — any edits affect only the copied version inside AppFlowy.
For example, selecting a file from:
/home/user/projects/my_file.txt
creates a duplicate inside:
AppFlowy/…/files/...
and edits only that copy.
I also tried creating a shortcut (symbolic link) inside the AppFlowy files folder pointing to the original file, hoping AppFlowy would open the original version.
However, even in this case, AppFlowy still creates a new copy of the file instead of using the linked one.
Proposed solution:
Add an option to link external files instead of copying them.
For example:
• When adding a file with /file, include a checkbox like “Link to file (don’t copy)”.
• If selected, AppFlowy should open and edit the file directly from its original path (absolute or relative).
• The file block would store the external path reference instead of importing the file.
Optional improvements:
• Display a small tag or icon (e.g. “linked file”) for clarity.
• Show a “File not found” warning if the linked file is moved or deleted.
Impact
Additional Context
This feature would make AppFlowy significantly more flexible for users who work with existing project files (e.g. .txt, .md, .py, .ino).
Currently, the /file command is limited to attaching copies, which restricts its usefulness for direct editing workflows.
@LucasXu0 commented on GitHub (Nov 7, 2025):
Inserting a file via a file block is actually uploading your file to the cloud.
There are two reasons for duplication:
I guess you may want to have a feature to link to an external file without uploading it, which means it's a symbolic link to your local file.
@KriszDK commented on GitHub (Nov 7, 2025):
I understand the symbolic link idea, but for a self-hosted setup, my goal would be different.
It would be great if AppFlowy could allow adding a local path like:
D:\testfolder\testfile.docx
and when clicking on it, the desktop client would open that file (or folder) on the user’s PC using the local file explorer.
In this case, each client PC would have the same Synology network drive mounted as D:, so the path is identical for everyone.
This way, AppFlowy would not need to copy or download the file — it would just open the original one directly from the shared drive.