Code Monkey home page Code Monkey logo

Comments (3)

u5surf avatar u5surf commented on September 22, 2024 2

@viniciusbds
It seems not to update image size before new image insert.
Therefore it would be better to update one with obtaining file size with os.Stat.
Can I work on this issue, if anyone would not be?

@@ -122,6 +123,11 @@ func Insert(name, baseImage string) error {
        if baseImg == nil {
                return errors.New("ERROR: NIL Image ... ")
        }
+       size, err := io.FileSize(baseImage)
+       if err != nil {
+               return err
+       }
+       baseImg.Size = strconv.FormatInt(size, 10)

diff --git a/pkg/io/io.go b/pkg/io/io.go
index d1492d6..fc9e19e 100644
--- a/pkg/io/io.go
+++ b/pkg/io/io.go
@@ -13,6 +13,15 @@ func FileExists(fileName string) bool {
        return true
 }

+// FileSize get file size if a directory or a file exists
+func FileSize(fileName string) (int64, error) {
+       f, err := os.Stat(fileName)
+        if os.IsNotExist(err) {
+               return 0, err
+       }
+       return f.Size(), nil
+}
+

from navio.

viniciusbds avatar viniciusbds commented on September 22, 2024

HI @u5surf , welcome to the project, feel free to pick up this issue 😃

from navio.

viniciusbds avatar viniciusbds commented on September 22, 2024

#solved by @u5surf
#close #38

from navio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.