@@ -3,7 +3,6 @@ package conversation_msg
3
3
import (
4
4
"context"
5
5
"fmt"
6
- pconstant "github.com/openimsdk/protocol/constant"
7
6
"net/url"
8
7
"os"
9
8
"path/filepath"
@@ -12,6 +11,8 @@ import (
12
11
"sync"
13
12
"time"
14
13
14
+ pconstant "github.com/openimsdk/protocol/constant"
15
+
15
16
"github.com/openimsdk/tools/errs"
16
17
17
18
"github.com/openimsdk/openim-sdk-core/v3/internal/third/file"
@@ -487,11 +488,18 @@ func (c *Conversation) SendMessage(ctx context.Context, s *sdk_struct.MsgStruct,
487
488
name = fmt .Sprintf ("msg_file_%s.unknown" , s .ClientMsgID )
488
489
}
489
490
490
- delFile = append (delFile , s .FileElem .FilePath )
491
+ var sourcePath string
492
+ if utils .FileExist (s .FileElem .FilePath ) {
493
+ sourcePath = s .FileElem .FilePath
494
+ delFile = append (delFile , utils .FileTmpPath (s .FileElem .FilePath , c .DataDir ))
495
+ } else {
496
+ sourcePath = utils .FileTmpPath (s .FileElem .FilePath , c .DataDir )
497
+ delFile = append (delFile , sourcePath )
498
+ }
491
499
492
500
res , err := c .file .UploadFile (ctx , & file.UploadFileReq {
493
501
ContentType : content_type .GetType (s .FileElem .FileType , filepath .Ext (s .FileElem .FilePath ), filepath .Ext (s .FileElem .FileName )),
494
- Filepath : s . FileElem . FilePath ,
502
+ Filepath : sourcePath ,
495
503
Uuid : s .FileElem .UUID ,
496
504
Name : c .fileName ("file" , s .ClientMsgID ) + "/" + filepath .Base (name ),
497
505
Cause : "msg-file" ,
0 commit comments